github.com/jackc/pgx/v5.dbTx.conn (field)
14 uses
github.com/jackc/pgx/v5 (current package)
tx.go#L110: conn: c,
tx.go#L158: conn *Conn
tx.go#L171: _, err := tx.conn.Exec(ctx, "savepoint sp_"+strconv.FormatInt(tx.savepointNum, 10))
tx.go#L190: commandTag, err := tx.conn.Exec(ctx, commandSQL)
tx.go#L193: if tx.conn.PgConn().TxStatus() != 'I' {
tx.go#L194: _ = tx.conn.Close(ctx) // already have error to return
tx.go#L214: _, err := tx.conn.Exec(ctx, "rollback")
tx.go#L218: tx.conn.die()
tx.go#L231: return tx.conn.Exec(ctx, sql, arguments...)
tx.go#L240: return tx.conn.Prepare(ctx, name, sql)
tx.go#L251: return tx.conn.Query(ctx, sql, args...)
tx.go#L266: return tx.conn.CopyFrom(ctx, tableName, columnNames, rowSrc)
tx.go#L275: return tx.conn.SendBatch(ctx, b)
tx.go#L284: return tx.conn